:root {
    --header-height: var(--vbx-header-h, 60px);

    /* Breakpoints */
    --breakpoint-tablet-mobile: 1230px;
    --breakpoint-mobile: 767px;
    
    /* Layout Dimensions */
    --sidebar-width: 264px;
    --bottom-nav-height: 70px;
    
    /* Colors */
    --color-primary: #008489;
    --color-primary-hover: #006b6f;
    --color-primary-dark: #006b6f;
    --color-primary-gradient: linear-gradient(78deg, #008489 -4.87%, #00BABE 106.4%);
    --color-primary-light: #DCECEC;
    --color-primary-light-hover: #C8E0E0;
    --color-border-main: #DADADA;
    --color-border-dark: #C5C5C5;
    --color-basic-white: #FFF;
    --color-basic-black: #0B0B0B;
    --color-text-primary: #2B2B2B;
    --color-text-main: #2D2D2D;
    --color-text-secondary: #767676;
    --color-bg-hover: #F5F5F5;
    --color-background-secondary: #F2F2F2;
    
    /* Typography */
    --font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-size-body1: 16px;
    --font-size-body2: 13px;
    --font-size-h1: 28px;
    --font-size-h2: 20px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 24px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-round: 35px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-base: 0.2s ease;
    
    /* Z-index */
    --z-sidebar: 10;
    --z-bottom-nav: 100;
    --z-modal-backdrop: 1000;
    --z-modal: 1010;
}

/* ========================================
   2. RESET & BASE
======================================== */
.vbx-dashboard,
.vbx-dashboard *{
  box-sizing: border-box;
}

.vbx-dashboard *{
  margin: 0;
  padding: 0;
}

.vbx-dashboard{
  font-family: var(--font-family);
  font-size: var(--font-size-body1);
  color: var(--color-text-primary);
  line-height: 1.5;
  background: var(--color-basic-white);
}

.vbx-dashboard ul{
  list-style: none;
}

.vbx-dashboard a,
.vbx-dashboard a:hover,
.vbx-dashboard a:focus,
.vbx-dashboard a:active,
.vbx-dashboard a:visited{
  text-decoration: none;
  color: inherit;
}

html[dir="ltr"] .vbx-dashboard__sidebar li > a,
html[dir="ltr"] .vbx-dashboard__bottom-nav li > a{
  margin-left: 0;
}

.vbx-dashboard button{
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.vbx-dashboard img{
  max-width: 100%;
  height: auto;
  display: block;
}

.vbx-dashboard input,
.vbx-dashboard select,
.vbx-dashboard textarea{
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ========================================
   3. HEADER
======================================== */
.vbx-dashboard-header {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: var(--header-height);
    height: var(--header-height);
    padding: 6px 32px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--color-border-main);
    background: var(--color-basic-white);
}

.vbx-dashboard-header__logo {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

.vbx-dashboard-header__spacer {
    flex: 1;
}

.vbx-dashboard-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vbx-dashboard-header__button {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--color-border-main);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    transition: all var(--transition-base);
}

.vbx-dashboard-header__button:hover {
    background: var(--color-bg-hover);
    border-color: var(--color-primary);
}

/* ========================================
   4. DASHBOARD LAYOUT (DESKTOP)
======================================== */
.vbx-dashboard {
    display: grid;
    grid-template-areas: "sidebar content";
    grid-template-columns: var(--sidebar-width) 1fr;
    min-height: calc(100vh - var(--header-height));
}

/* ========================================
   5. CONTENEUR SIDEBAR (avec bordure)
======================================== */
.vbx-dashboard-sidebar-container {
    position: sticky;
    top: var(--header-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    border-right: 1px solid var(--vbx-header-color-border);
    background: var(--color-basic-white);
    overflow: hidden;
}

/* ========================================
   SIDEBAR - Navigation et bouton
======================================== */
.vbx-dashboard__sidebar {
    display: flex;
    width: 100%;
    padding: 25px 0 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    height: calc(100% - 120px);
    overflow: hidden;
}

.vbx-dashboard-sidebar__button-section {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    flex-shrink: 0;
}

.vbx-dashboard-sidebar__nav-section {
    display: flex;
    padding-right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
}

/* ========================================
   FOOTER - Toujours fixe en bas
======================================== */
.vbx-dashboard-sidebar__footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--color-basic-white);
    display: flex;
    align-items: center;
}

.vbx-dashboard-sidebar__footer-section {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
}

/* ========================================
   FOOTER - Toujours fixe en bas
======================================== */
.vbx-dashboard-sidebar__footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--color-basic-white);
}

.vbx-dashboard-sidebar__footer-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    gap: 20px;
}

/* ========================================
   SIDEBAR - Navigation et bouton
======================================== */
.vbx-dashboard__sidebar {
    display: flex;
    width: 100%;
    padding: 25px 0 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    height: calc(100% - 160px);
    overflow: hidden;
}

/* ========================================
   FOOTER - Toujours fixe en bas
======================================== */
.vbx-dashboard-sidebar__footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--color-basic-white);
}

.vbx-dashboard-sidebar__footer-content {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 10px 20px;
    width: 100%;
    gap: 10px;
}

/* ========================================
   FOOTER LINKS
======================================== */
.vbx-dashboard-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.033px;
    margin-left: 10px;
}

/* ========================================
   CONTENEUR IMAGE FEDER
======================================== */
.vbx-dashboard-feder {
    display: flex;
    height: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

/* ========================================
   VBX APPOINTMENTS - CARDS CONTAINER
======================================== */

.vbx-dashboard-appointments-cards {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* ========================================
   VBX APPOINTMENTS - CARD
======================================== */

.vbx-dashboard-appointment-card {
    display: flex;
    height: 98px;
    padding: 25px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 20px;
    border-radius: 6px;
    background: var(--color-basic-white);
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.17);
}

/* ========================================
   VBX APPOINTMENTS - CARD CONTENT (left)
======================================== */

.vbx-dashboard-appointment-card__content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.vbx-dashboard-appointment-card__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

/* Row 1: Title (wraps to next line if too long) */
.vbx-dashboard-appointment-card__title {
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Row 2: Date/time + remaining */
.vbx-dashboard-appointment-card__datetime {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.vbx-dashboard-appointment-card__date {
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0.033px;
}

.vbx-dashboard-appointment-card__separator-dot {
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 19px;
}

.vbx-dashboard-appointment-card__remaining {
    color: var(--color-primary);
    font-family: "Public Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0.033px;
}

/* Row 3: Person (commented out for now) */
.vbx-dashboard-appointment-card__person {
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.033px;
}

/* Row 3: Location (clickable link to Google Maps) */
.vbx-dashboard-appointment-card__location {
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.033px;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: color var(--transition-base);
}

/* Override global reset .vbx-dashboard a { text-decoration: none } */
a.vbx-dashboard-appointment-card__location {
    text-decoration: underline;
}

.vbx-dashboard-appointment-card__location:hover {
    color: var(--color-primary);
}

/* ========================================
   VBX APPOINTMENTS - CARD ACTIONS (right)
======================================== */

.vbx-dashboard-appointment-card__actions {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
}

.vbx-dashboard-appointment-card__button {
    display: flex;
    height: 48px;
    padding: 15px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid var(--color-primary);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

/* Override global reset .vbx-dashboard button { border: none } */
button.vbx-dashboard-appointment-card__button {
    border: 1px solid var(--color-primary);
}

.vbx-dashboard-appointment-card__button:hover {
    background: rgba(0, 132, 137, 0.05);
}

.vbx-dashboard-appointment-card__button:active {
    background: rgba(0, 132, 137, 0.1);
}

.vbx-dashboard-appointment-card__button-icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.vbx-dashboard-appointment-card__button-icon svg {
    display: block;
}

.vbx-dashboard-appointment-card__button-text {
    color: var(--color-primary);
    text-align: center;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.07px;
    white-space: nowrap;
}

/* ========================================
   VBX APPOINTMENTS - CANCELLED STATE
======================================== */

.vbx-dashboard-appointment-card__cancelled {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.vbx-dashboard-appointment-card__cancelled-icon {
    width: 24px;
    height: 24px;
}

.vbx-dashboard-appointment-card__cancelled-text {
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 13px;
    font-weight: 500;
    line-height: 19px;
}

/* ========================================
   VBX APPOINTMENTS - STATUS LABEL (past)
======================================== */

.vbx-dashboard-appointment-card__status-label {
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

/* ========================================
   VBX APPOINTMENTS - EMPTY STATE
======================================== */

.vbx-dashboard-appointments-empty {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.vbx-dashboard-appointments-empty__container {
    display: flex;
    width: 470px;
    max-width: 100%;
    padding: 0px 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-radius: 8px;
}

.vbx-dashboard-appointments-empty__illustration {
    width: 251px;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    display: block;
}

.vbx-dashboard-appointments-empty__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.vbx-dashboard-appointments-empty__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.vbx-dashboard-appointments-empty__title {
    align-self: stretch;
    color: var(--color-text-main);
    text-align: center;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.vbx-dashboard-appointments-empty__description {
    color: var(--color-text-secondary);
    text-align: center;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    align-self: stretch;
}

/* ========================================
   VBX APPOINTMENTS - CANCEL DIALOG
======================================== */

.vbx-dashboard-appointment-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: flex;
    justify-content: center;
    align-items: center;
}

.vbx-dashboard-appointment-dialog__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.vbx-dashboard-appointment-dialog__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: var(--color-basic-white);
    border-radius: 12px;
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.17);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.vbx-dashboard-appointment-dialog__icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.vbx-dashboard-appointment-dialog__icon svg {
    width: 48px;
    height: 48px;
}

.vbx-dashboard-appointment-dialog__text {
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.vbx-dashboard-appointment-dialog__actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.vbx-dashboard-appointment-dialog__button {
    display: flex;
    height: 48px;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-family: "Public Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.07px;
    cursor: pointer;
    transition: all var(--transition-base);
    min-width: 140px;
}

.vbx-dashboard-appointment-dialog__button--secondary {
    border: 1px solid var(--color-border-dark);
    background: var(--color-background-secondary);
    color: var(--color-text-main);
}

.vbx-dashboard-appointment-dialog__button--secondary:hover {
    background: var(--color-bg-hover);
}

.vbx-dashboard-appointment-dialog__button--primary {
    border: none;
    background: var(--color-primary-gradient);
    color: var(--color-basic-white);
}

.vbx-dashboard-appointment-dialog__button--primary:hover {
    opacity: 0.9;
}

/* ========================================
   VBX APPOINTMENTS - LOADER
======================================== */

.vbx-dashboard-appointment-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: calc(var(--z-modal) + 10);
    display: flex;
    justify-content: center;
    align-items: center;
}

.vbx-dashboard-appointment-loader::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-border-main);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: vbx-appointment-spin 0.8s linear infinite;
}

@keyframes vbx-appointment-spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   VBX APPOINTMENTS - RESPONSIVE TABLETTE
======================================== */

@media (max-width: 1230px) {
    .vbx-dashboard-appointments-cards {
        width: 100%;
    }
}

/* ========================================
   VBX APPOINTMENTS - RESPONSIVE MOBILE
======================================== */

@media (max-width: 767px) {
    .vbx-dashboard-appointments-cards {
        width: 100%;
        gap: 15px;
    }

    .vbx-dashboard-appointment-card {
        flex-direction: column;
        height: auto;
        padding: 20px;
        align-items: flex-start;
        gap: 20px;
    }

    .vbx-dashboard-appointment-card__content {
        width: 100%;
    }

    .vbx-dashboard-appointment-card__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .vbx-dashboard-appointment-card__button {
        flex: 1;
        justify-content: center;
        padding: 12px 15px;
    }

    button.vbx-dashboard-appointment-card__button {
        border: 1px solid var(--color-primary);
    }

    .vbx-dashboard-appointment-card__button-text {
        font-size: 13px;
    }

    /* Empty state */
    .vbx-dashboard-appointments-empty {
        padding: 40px 16px;
    }

    .vbx-dashboard-appointments-empty__container {
        width: 100%;
        padding: 0px 20px;
        gap: 30px;
    }

    /* Dialog */
    .vbx-dashboard-appointment-dialog__content {
        padding: 40px;
        max-width: 90%;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .vbx-dashboard-appointment-dialog__button {
        min-width: 120px;
        padding: 12px 16px;
    }
}

.vbx-dashboard-feder__image {
    height: 80px;
    width: 100%;
    flex-shrink: 0;
}

.vbx-dashboard-feder__image--en {
    background: url("/images/general/feder_banner_europe_en.png") center / contain no-repeat transparent;
}

.vbx-dashboard-feder__image--fr-nl {
    background: url("/images/general/feder_banner_europe_fr_nl.png") center / contain no-repeat transparent;
}

/* ========================================
   RESPONSIVE - Mobile/Tablette
======================================== */
@media (max-width: 1023px) {
    .vbx-dashboard-sidebar-container {
        display: none;
    }
}

/* ========================================
   6. BOUTON PRIMARY
======================================== */
.vbx-dashboard-button {
    display: flex;
    height: 48px;
    padding: 12px 20px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    font-size: var(--font-size-body1);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-base);
    cursor: pointer;
}

.vbx-dashboard-button--primary {
    background: var(--color-primary-gradient);
    color: var(--color-basic-white);
}

.vbx-dashboard-button--primary:hover {
    opacity: 0.9;
}

.vbx-dashboard-button--primary:active {
    transform: scale(0.97);
    opacity: 0.85;
}

.vbx-dashboard-button__icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.vbx-dashboard-button__icon-svg {
    display: flex;
    width: 20px;
    height: 19px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-basic-white);
    fill: currentColor;
}

.vbx-dashboard-button__text {
    flex: 1 0 0;
    color: var(--color-basic-white);
    text-align: center;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.07px;
}

/* ========================================
   7. NAVIGATION LINKS (Sidebar)
======================================== */
.vbx-dashboard-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.vbx-dashboard-nav-link {
    display: flex;
    padding: 5px 10px 5px 30px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 0 100px 100px 0;
    transition: all var(--transition-base);
    color: var(--color-text-primary);
    text-decoration: none;
}

.vbx-dashboard-nav-link:hover {
    background-color: var(--color-bg-hover);
}

.vbx-dashboard-nav-link--active {
    background: var(--color-primary-light);
}

.vbx-dashboard-nav-link--active:hover {
    background: var(--color-primary-light-hover);
}

.vbx-dashboard-nav-link--active:hover .vbx-dashboard-nav-link__icon-wrapper {
    background: var(--color-primary-dark);
}

.vbx-dashboard-nav-link:active {
    transform: scale(0.98);
}

.vbx-dashboard-nav-link__icon-wrapper {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    background: var(--color-background-secondary);
    flex-shrink: 0;
    transition: background-color var(--transition-base);
}

.vbx-dashboard-nav-link--active .vbx-dashboard-nav-link__icon-wrapper {
    background: var(--color-primary);
}

.vbx-dashboard-nav-link__icon-svg {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--color-text-secondary);
    fill: currentColor;
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    text-align: center;
}

.vbx-dashboard-nav-link--active .vbx-dashboard-nav-link__icon-svg {
    color: var(--color-basic-white);
    fill: var(--color-basic-white);
}

.vbx-dashboard-nav-link__text {
    flex: 1 0 0;
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

/* ========================================
   8. FOOTER LINKS (Sidebar)
======================================== */
.vbx-dashboard-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.033px;
}

.vbx-dashboard-footer-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
    cursor: pointer;
}

.vbx-dashboard-footer-link:hover {
    color: #008489;
}

.vbx-dashboard-footer-separator {
    color: var(--color-text-secondary);
    user-select: none;
}

/* ========================================
   9. MAIN CONTENT (Partie droite)
======================================== */
.vbx-dashboard__content {
    grid-area: content;
    display: flex;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 40px;
    overflow-y: auto;
}

.vbx-dashboard-content__header {
    width: 100%;
}

.vbx-dashboard-content__title {
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.vbx-dashboard-content__section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.vbx-dashboard-section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

/* ========================================
   10. SEARCH BAR + AUTOCOMPLETE
======================================== */
.vbx-dashboard-search-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
}

.vbx-dashboard-search-wrapper--focused {
    z-index: 1001;
}

.vbx-dashboard-search {
    display: flex;
    height: 65px;
    padding: 10px 25px;
    padding-right: 60px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 68px;
    border: 1px solid var(--color-border-dark);
    background: var(--color-basic-white);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.vbx-dashboard-search-wrapper--focused .vbx-dashboard-search {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.20);
    padding-left: 60px;
}

.vbx-dashboard-search__icon {
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: absolute;
    left: 25px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vbx-dashboard-search-wrapper--focused .vbx-dashboard-search__icon {
    opacity: 1;
    pointer-events: auto;
}

.vbx-dashboard-search__clear {
    position: absolute;
    width: 20px;
    height: 20px;
    color: var(--color-text-main);
    fill: currentColor;
    transform: scale(1) rotate(0deg);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.vbx-dashboard-search__input {
    flex: 1;
    border: none;
    outline: none;
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    background: transparent;
}

.vbx-dashboard-search__input::placeholder {
    color: var(--color-text-secondary);
}

.vbx-dashboard-search__button {
    display: flex;
    height: 45px;
    padding: 12px 20px;
    align-items: center;
    gap: 8px;
    position: absolute;
    right: 8px;
    top: 10px;
    border-radius: 46px;
    background: var(--color-basic-black);
    border: none;
    cursor: pointer;
    
}

.vbx-dashboard-search__button:hover {
    transform: translateX(0) scale(1.05);
}

.vbx-dashboard-search__button:active {
    transform: translateX(0) scale(0.95);
    filter: brightness(0.92);
}

.vbx-dashboard-search__button-icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.vbx-dashboard-search__button-icon-svg {
    width: 20px;
    height: 19px;
    color: var(--color-basic-white);
    fill: currentColor;
}

.vbx-dashboard-search__button-text {
    color: var(--color-basic-white);
    font-family: "Public Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.07px;
}

.vbx-dashboard-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vbx-dashboard-search-overlay--active {
    opacity: 1;
    visibility: visible;
}

.vbx-dashboard-autocomplete {
    position: absolute;
    z-index: 1002;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: calc(7 * 50px);
    overflow-y: auto;
    background: var(--color-basic-white);
    border-radius: 16px;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.vbx-dashboard-autocomplete--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vbx-dashboard-autocomplete__item {
    padding: 15px 25px;
    cursor: pointer;
    background-color: var(--color-basic-white);
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 15px;
    line-height: 22px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--color-border-main);
}

.vbx-dashboard-autocomplete__item:last-child {
    border-bottom: none;
}

.vbx-dashboard-autocomplete__item:hover {
    background-color: var(--color-bg-hover);
}

.vbx-dashboard-autocomplete__item--active {
    background-color: var(--color-primary-light) !important;
}

.vbx-dashboard-autocomplete__item strong {
    color: var(--color-primary);
    font-weight: 600;
}

.vbx-dashboard-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.vbx-dashboard-autocomplete::-webkit-scrollbar-thumb {
    background: var(--color-border-main);
    border-radius: 3px;
}

.vbx-dashboard-autocomplete::-webkit-scrollbar-thumb:hover {
    background: var(--color-border-dark);
}

/* ========================================
   11. POPULAR ARTICLES GRID (Demandes fréquentes)
======================================== */
.vbx-dashboard-popular-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.vbx-dashboard-popular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-self: stretch;
}

.vbx-dashboard-popular-card {
    display: flex;
    height: 60px;
    padding: 12px 16px;
    align-items: center;
    gap: 12px;
    width: calc((100% - 30px) / 4);
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--color-border-main);
    background: var(--color-basic-white);
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
}

.vbx-dashboard-popular-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.vbx-dashboard-popular-card:active {
    transform: scale(0.98);
}

.vbx-dashboard-popular-card__icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.vbx-dashboard-popular-card__icon-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================
   GRADIENT ICONS - Popular Cards
   ======================================== */

/* Icônes avec gradient - État normal */
.vbx-dashboard-popular-card .vbx-icon--gradient use {
    fill: url(#vbx-gradient-primary);
}

/* Icônes avec gradient - État hover */
.vbx-dashboard-popular-card:hover .vbx-icon--gradient use {
    fill: url(#vbx-gradient-primary-hover);
}

/* ========================================
   COULEURS SIMPLES - Popular Cards (Alternative)
   ======================================== */

/* Icônes SANS gradient - Couleur unie normale */
.vbx-dashboard-popular-card__icon-svg:not(.vbx-icon--gradient) {
    color: var(--color-primary);
}

.vbx-dashboard-popular-card__icon-svg:not(.vbx-icon--gradient) use {
    fill: currentColor;
}

/* Icônes SANS gradient - Couleur unie hover */
.vbx-dashboard-popular-card:hover .vbx-dashboard-popular-card__icon-svg:not(.vbx-icon--gradient) {
    color: var(--color-primary-hover);
}

.vbx-dashboard-popular-card__title {
    flex: 1 0 0;
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.033px;
}

/* ========================================
   SEPARATOR LINE
======================================== */
.vbx-dashboard-separator {
    width: 100%;
    height: 1px;
    background: #DADADA;
    margin: 0;
    border: none;
}

/* ========================================
   CATEGORIES BY THEMES (Par thèmes)
======================================== */
.vbx-dashboard-themes-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.vbx-dashboard-themes-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.vbx-dashboard-themes-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.vbx-dashboard-theme-card {
    display: flex;
    height: 170px;
    padding: 0 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--transition-base);
    cursor: pointer;
}

.vbx-dashboard-theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
    z-index: 1;
}

.vbx-dashboard-theme-card:hover {
    transform: scale(1.02);
}

.vbx-dashboard-theme-card:active {
    transform: scale(0.98);
}

.vbx-dashboard-theme-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vbx-dashboard-theme-card__title {
    align-self: stretch;
    color: var(--color-basic-white);
    text-align: center;
    font-family: "Public Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.vbx-dashboard-theme-card__subtitle {
    align-self: stretch;
    color: var(--color-basic-white);
    text-align: center;
    font-family: "Public Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

/* ========================================
   OLD CATEGORIES GRID (À supprimer plus tard)
======================================== */
.vbx-dashboard-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vbx-dashboard-category-card {
    display: flex;
    flex-direction: column;
    background: var(--color-basic-white);
    border: 1px solid var(--color-border-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.vbx-dashboard-category-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.vbx-dashboard-category-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.vbx-dashboard-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vbx-dashboard-category-card__content {
    padding: 20px;
}

.vbx-dashboard-category-card__title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.vbx-dashboard-category-card__subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ========================================
   BOTTOM NAVIGATION (Cachée par défaut)
======================================== */
.vbx-dashboard__bottom-nav {
    display: none;
}

.vbx-dashboard-bottom-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.vbx-dashboard-bottom-nav-link {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: all var(--transition-base);
}

.vbx-dashboard-bottom-nav-link__icon-wrapper {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.vbx-dashboard-bottom-nav-link__icon-svg {
    display: flex;
    width: 20px;
    height: 19px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-text-secondary);
    fill: currentColor;
    text-align: center;
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.vbx-dashboard-bottom-nav-link__text {
    color: var(--color-text-main);
    text-align: center;
    font-family: "Public Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.025px;
}

.vbx-dashboard-bottom-nav-link--active {
    border-radius: 0 100px 100px 0;
}

.vbx-dashboard-bottom-nav-link--active .vbx-dashboard-bottom-nav-link__icon-svg {
    color: var(--color-primary);
    fill: var(--color-primary);
}

.vbx-dashboard-bottom-nav-link--active .vbx-dashboard-bottom-nav-link__text {
    color: var(--color-primary);
}

.vbx-dashboard-popular-show-more {
    display: none;
}

/* =========================================================
    Bottom nav — Tap feedback (mobile/tablette)
    ========================================================= */
@media (max-width: 1023px) and (hover: none) and (pointer: coarse) {

    .vbx-dashboard-bottom-nav-link{
        position: relative;
        border-radius: 12px;
        -webkit-tap-highlight-color: transparent;
        transition: transform 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
    }

    .vbx-dashboard-bottom-nav-link:hover{
        background: transparent;
    }

    .vbx-dashboard-bottom-nav-link:active{
        background: var(--color-bg-hover);
        transform: scale(0.97);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
    }

    .vbx-dashboard-bottom-nav-link--active:active{
        background: var(--color-primary-light);
    }

    .vbx-dashboard-bottom-nav-link:focus,
    .vbx-dashboard-bottom-nav-link:focus-visible{
        outline: none;
        background: var(--color-bg-hover);
        box-shadow: 0 0 0 3px rgba(0, 132, 137, 0.25);
    }

    .vbx-dashboard-bottom-nav-link::after{
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.06);
        opacity: 0;
        transform: scale(0.98);
        transition: opacity 160ms ease, transform 160ms ease;
        pointer-events: none;
    }

    .vbx-dashboard-bottom-nav-link:active::after{
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   16. MODAL
======================================== */
.vbx-dashboard-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
}

.vbx-dashboard-modal--active {
    display: flex;
}

.vbx-dashboard-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-modal-backdrop);
}

.vbx-dashboard-modal__dialog {
    position: relative;
    display: flex;
    width: 1048px;
    max-width: 90%;
    max-height: 85vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 8px;
    background: var(--color-basic-white);
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.17);
    z-index: calc(var(--z-modal-backdrop) + 1);
    overflow: hidden;
}

.vbx-dashboard-modal__header {
    display: flex;
    padding: 20px 80px 20px 40px;
    flex-direction: column;
    align-items: flex-end;
    align-self: stretch;
    border-bottom: 1px solid var(--color-border-main);
    background: var(--color-basic-white);
    flex-shrink: 0;
    position: relative;
}

.vbx-dashboard-modal__title {
    align-self: stretch;
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.vbx-dashboard-modal__close {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 20px;
    top: 11px;
    border-radius: 180px;
    background: var(--color-background-secondary);
    color: var(--color-text-secondary);
    font-size: 20px;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.vbx-dashboard-modal__close:hover {
    background-color: var(--color-border-main);
    color: var(--color-text-primary);
}

.vbx-dashboard-modal__body {
    display: flex;
    padding: 0 50px 40px 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
    overflow-y: auto;
    flex: 1;
    position: relative;
}

.vbx-dashboard-modal__body > .vbx-dashboard-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    border-radius: 0;
}

.vbx-dashboard-modal .vbx-dashboard-search-wrapper--focused {
    z-index: 1001;
}

.vbx-dashboard-modal .vbx-dashboard-autocomplete {
    max-height: 200px;
}

/* ========================================
   MODAL — Responsive Mobile (≤ 767px)
======================================== */
@media (max-width: 767px) {
    .vbx-dashboard-modal__dialog {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        height: auto;
        max-height: calc(100dvh - 48px);
        border-radius: 8px;
        gap: 30px;
        box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.17);
    }

    .vbx-dashboard-modal__header {
        padding: 16px 60px 16px 20px;
    }

    .vbx-dashboard-modal__close {
        right: 16px;
        top: 10px;
    }

    .vbx-dashboard-modal__body {
        padding: 0 20px 24px 20px;
        gap: 30px;
    }

    .vbx-dashboard-modal .vbx-dashboard-autocomplete {
        max-height: 160px;
    }
}

/* =========================================================
   RESPONSIVE — Desktop large (≥ 1291px) — THÈMES
   ========================================================= */
@media (min-width: 1291px){
    .vbx-dashboard-themes-grid{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        align-self: stretch;
    }
    .vbx-dashboard-themes-row{
        display: contents;
    }
}

/* =========================================================
   RESPONSIVE — Desktop large (≥ 1291px) — THÈMES
   ========================================================= */
@media (min-width: 1291px){
    .vbx-dashboard-themes-grid{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        align-self: stretch;
    }
    .vbx-dashboard-themes-row{
        display: contents;
    }
}

/* =========================================================
   RESPONSIVE — Desktop "compact" (1024px → 1290px)
   ========================================================= */
@media (min-width: 1024px) and (max-width: 1290px) {

  .vbx-dashboard__sidebar {
        width: 264px;
        min-width: 264px;
        max-width: 264px;
    }

  .vbx-dashboard {
        grid-template-columns: 264px 1fr;
    }

  .vbx-dashboard-popular-card {
    width: auto;
    flex: 0 0 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
  }

  .vbx-dashboard-themes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .vbx-dashboard-themes-row {
    display: contents;
  }

  .vbx-dashboard-theme-card {
    height: 172px;
    padding: 0 40px;
  }
}

/* ========================================
   RESPONSIVE — TABLETTE/MOBILE (≤ 1023px)
======================================== */
@media (max-width: 1023px) {
    .vbx-dashboard {
        grid-template-areas: 
            "content"
            "bottom-nav";
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    
    .vbx-dashboard__sidebar {
        display: none;
    }
    
    .vbx-dashboard__content {
        max-width: 100%;
        padding: 32px 24px;
        padding-bottom: calc(var(--bottom-nav-height) + 24px);
        gap: 24px;
    }
    
    .vbx-dashboard-content__title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .vbx-dashboard-section-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .vbx-dashboard-search {
        height: 58px;
        padding: 8px 20px;
    }
    
    .vbx-dashboard-search__input {
        font-size: 15px;
    }
    
    .vbx-dashboard-search__button {
        height: 42px;
        padding: 10px 18px;
        right: 8px;
        top: 8px;
    }
    
    .vbx-dashboard-search__button-text {
        font-size: 13px;
    }

    .vbx-dashboard-popular-grid {
        gap: 8px;
    }
    
    .vbx-dashboard-popular-card {
        width: calc((100% - 16px) / 3);
        height: 55px;
        padding: 10px 12px;
        gap: 10px;
    }
    
    .vbx-dashboard-popular-card__icon {
        width: 22px;
        height: 22px;
    }
    
    .vbx-dashboard-popular-card__title {
        font-size: 12px;
        line-height: 18px;
    }

    .vbx-dashboard-themes-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-self: stretch;
    }

    .vbx-dashboard-themes-row {
        display: contents;
    }

    .vbx-dashboard-theme-card {
        height: 172px;
        padding: 0 40px;
    }

    .vbx-dashboard-theme-card__title {
        font-size: 26px;
        line-height: 30px;
    }

    .vbx-dashboard-theme-card__subtitle {
        font-size: 15px;
        line-height: 19px;
    }

    .vbx-dashboard__bottom-nav {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-top: 1px solid var(--color-border-main);
        background: var(--color-basic-white);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: var(--z-bottom-nav);
        height: var(--bottom-nav-height);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }

    .vbx-dashboard-modal__dialog {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        height: auto;
        max-height: calc(100% - 48px);
        border-radius: 8px;
        box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.17);
    }
}

/* ========================================
   RESPONSIVE — MOBILE (≤ 767px)
======================================== */
@media (max-width: 767px) {
    .vbx-dashboard-header {
        padding: 6px 16px;
        gap: 12px;
    }
    
    .vbx-dashboard-header__logo {
        font-size: 18px;
    }
    
    .vbx-dashboard-header__actions {
        gap: 8px;
    }
    
    .vbx-dashboard-header__button {
        padding: 6px 12px;
        font-size: 13px;
    }

    .vbx-dashboard__content {
        display: flex;
        width: 100%;
        max-width: 700px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 20px 20px;
        padding-bottom: calc(var(--bottom-nav-height) + 20px);
        margin: 0 auto;
    }

    .vbx-dashboard-content__title {
        align-self: stretch;
        color: var(--color-text-main);
        font-family: "Public Sans";
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px;
    }
    
    .vbx-dashboard-section-title {
        font-size: 16px;
    }

    .vbx-dashboard-search {
        display: flex;
        height: 65px;
        padding: 10px 25px;
        align-items: center;
        gap: 12px;
        align-self: stretch;
        border-radius: 68px;
        border: 1px solid var(--color-border-dark);
        background: var(--color-basic-white);
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
        position: relative;
    }

    .vbx-dashboard-search__icon {
        display: flex;
        left: 25px;
    }
    
    .vbx-dashboard-search-wrapper--focused .vbx-dashboard-search {
        padding-left: 60px;
    }

    .vbx-dashboard-search__input {
        flex: 1;
        font-size: 14px;
    }

    .vbx-dashboard-search__button {
        display: flex;
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 10px;
        top: 10px;
        border-radius: 46px;
        background: var(--color-basic-black);
        gap: 0;
    }
    
    .vbx-dashboard-search.vbx-dashboard-search--focused .vbx-dashboard-search__button {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
    }

    .vbx-dashboard-search__button-text {
        display: none;
    }

    .vbx-dashboard-search__button-icon {
        display: flex;
        width: 24px;
        height: 24px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    
    .vbx-dashboard-search__button-icon-svg {
        display: flex;
        width: 20px;
        height: 19px;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
        color: var(--color-basic-white);
        fill: currentColor;
        text-align: center;
        font-family: "Font Awesome 6 Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .vbx-dashboard-popular-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        align-self: stretch;
    }
    
    .vbx-dashboard-section-title {
        align-self: stretch;
        color: var(--color-text-main);
        font-family: "Public Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }
    
    .vbx-dashboard-popular-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        align-self: stretch;
    }
    
    .vbx-dashboard-popular-card {
        display: flex;
        height: 60px;
        padding: 12px 16px;
        align-items: center;
        gap: 12px;
        align-self: stretch;
        width: 100%;
        border-radius: 8px;
        border: 1px solid var(--color-border-main);
        background: var(--color-basic-white);
        flex-direction: row;
        text-align: left;
        min-height: auto;
    }
    
    .vbx-dashboard-popular-card__icon {
        width: 24px;
        height: 24px;
    }
    
    .vbx-dashboard-popular-card__title {
        font-size: 13px;
        line-height: 20px;
    }

    .vbx-dashboard-popular-card:nth-child(n+5) {
        display: none;
    }

    .vbx-dashboard-popular-grid.vbx-dashboard-popular-grid--show-all .vbx-dashboard-popular-card {
        display: flex;
    }

    .vbx-dashboard-popular-show-more {
        display: flex;
        padding: 15px 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--color-primary);
        text-align: center;
        font-family: "Public Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: 0.07px;
        text-decoration-line: underline;
        text-decoration-style: solid;
    }
    
    .vbx-dashboard-popular-show-more:hover {
        opacity: 0.8;
    }

    .vbx-dashboard-themes-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
    }
    
    .vbx-dashboard-themes-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
    }
    
    .vbx-dashboard-themes-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        align-self: stretch;
        width: 100%;
    }
    
    .vbx-dashboard-theme-card {
        display: flex;
        height: 172px;
        padding: 0 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        border-radius: 6px;
        background-size: cover;
        background-position: center;
        width: 100%;
        flex: none;
    }
    
    .vbx-dashboard-theme-card__title {
        font-size: 22px;
        line-height: 26px;
    }
    
    .vbx-dashboard-theme-card__subtitle {
        font-size: 13px;
        line-height: 17px;
    }

    .vbx-dashboard__bottom-nav {
        display: flex;
        width: 100%;
        padding: 0 10px;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--color-border-main);
        background: var(--color-basic-white);
    }
    
    .vbx-dashboard-bottom-nav-list {
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }
    
    .vbx-dashboard-bottom-nav-link {
        padding: 8px;
        flex: 1;
    }
    
    .vbx-dashboard-bottom-nav-link__text {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0.02px;
    }
}

/* ========================================
   TAP FEEDBACK — Bottom nav (mobile)
======================================== */
@media (hover: none) and (pointer: coarse) {
  .vbx-dashboard-bottom-nav-link:hover {
    background: transparent;
  }

  .vbx-dashboard-bottom-nav-link:active {
    background: var(--color-bg-hover);
    transform: scale(0.98);
    border-radius: 12px;
  }

  .vbx-dashboard-bottom-nav-link--active:active {
    background: var(--color-primary-light);
  }

  .vbx-dashboard-bottom-nav-link:focus,
  .vbx-dashboard-bottom-nav-link:focus-visible {
    outline: none;
    border-radius: 12px;
    box-shadow: 0 0 0 3px rgba(0, 132, 137, 0.25);
  }

  .vbx-dashboard-bottom-nav-link {
    -webkit-tap-highlight-color: transparent;
  }
}


/* ========================================
   VBX REQUESTS - NAVIGATION TABS
======================================== */

.vbx-dashboard-requests-nav-wrapper {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--color-border-main);
    position: relative;
}

.vbx-dashboard-requests-nav {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.vbx-dashboard-requests-nav__list {
    display: flex;
    align-items: flex-start;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vbx-dashboard-requests-nav__item {
    position: relative;
}

html[dir="ltr"] .vbx-dashboard-requests-nav__link {
    margin-left: 0;
}

.vbx-dashboard-requests-nav__link {
    display: flex;
    padding: 7px 25px;
    align-items: flex-start;
    gap: 5px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--color-text-main);
    text-align: center;
    font-family: "Public Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.038px;
    position: relative;
    transition: background var(--transition-base);
}

.vbx-dashboard-requests-nav__link:hover {
    background: var(--color-bg-hover);
}

.vbx-dashboard-requests-nav__item--active .vbx-dashboard-requests-nav__link {
    display: flex;
    align-items: flex-start;
    font-weight: 700;
}

.vbx-dashboard-requests-nav__item--active .vbx-dashboard-requests-nav__link::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 50px 50px 0 0;
    background: var(--color-basic-black);
    z-index: 1;
}

/* ========================================
   VBX REQUESTS - FILTRES (HISTORY)
======================================== */

.vbx-dashboard-requests-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.vbx-dashboard-requests-filters__count {
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

.vbx-dashboard-requests-filters__select {
    padding: 8px 30px 8px 12px;
    border: 1px solid var(--color-border-dark);
    border-radius: 6px;
    background: var(--color-basic-white);
    font-family: "Public Sans";
    font-size: 14px;
    color: var(--color-text-main);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232D2D2D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.vbx-dashboard-requests-filters__optgroup > option {
    color: var(--color-text-main);
}

/* ========================================
   VBX REQUESTS - CARDS CONTAINER
======================================== */

.vbx-dashboard-requests-cards {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* ========================================
   VBX REQUESTS - CARD
======================================== */

.vbx-dashboard-requests-card {
    display: flex;
    width: 100%;
    height: 163.32px;
    align-items: center;
    gap: 30px;
    border-radius: 6px;
    background: var(--color-basic-white);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    text-decoration: none;
    color: inherit;
}

.vbx-dashboard-requests-card--clickable {
    cursor: pointer;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.vbx-dashboard-requests-card--clickable:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ========================================
   VBX REQUESTS - CARD IMAGE
======================================== */

.vbx-dashboard-requests-card__image {
    width: 245px;
    align-self: stretch;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px 0 0 6px;
}

.vbx-dashboard-requests-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========================================
   VBX REQUESTS - CARD CONTENT
======================================== */

.vbx-dashboard-requests-card__content {
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    flex: 1;
}

.vbx-dashboard-requests-card__title {
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

/* ========================================
   VBX REQUESTS - CARD ACTIONS (DRAFT)
======================================== */

.vbx-dashboard-requests-card__actions {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.vbx-dashboard-requests-card__button {
    display: flex;
    padding: 15px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.07px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.vbx-dashboard-requests-card__button--continue {
    border: 1px solid var(--color-text-main);
    background: transparent;
    color: var(--color-text-main);
}

.vbx-dashboard-requests-card__button--continue:hover {
    background: var(--color-bg-hover);
}

.vbx-dashboard-requests-card__button--delete {
    display: flex;
    width: 143px;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    color: var(--color-text-main);
    text-align: center;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.07px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor: not-allowed;
}

.vbx-dashboard-requests-card__button-text {
    flex: 1;
}

.vbx-dashboard-requests-card__button-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ========================================
   VBX REQUESTS - CARD INFO (OTHER STATUS)
======================================== */

.vbx-dashboard-requests-card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vbx-dashboard-requests-card__info-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.vbx-dashboard-requests-card__info-label {
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    min-width: 75px;
    flex-shrink: 0;
}

.vbx-dashboard-requests-card__info-value {
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    flex: 1;
}

/* ========================================
   VBX REQUESTS - CARD SEPARATOR + STATUS WRAPPER
======================================== */

.vbx-dashboard-requests-card__status-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vbx-dashboard-requests-card__separator {
    width: 1px;
    height: 97px;
    background: var(--color-border-main);
    flex-shrink: 0;
}

/* ========================================
   VBX REQUESTS - CARD STATUS
======================================== */

.vbx-dashboard-requests-card__status {
    display: flex;
    padding: 20px 20px 20px 0px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vbx-dashboard-requests-card__status-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.vbx-dashboard-requests-card__status-label {
    width: 95px;
    color: var(--color-text-main);
    text-align: center;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.vbx-dashboard-requests-card__status-date {
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
}

/* ========================================
   VBX REQUESTS - PAGINATION
======================================== */

.vbx-dashboard-requests-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.vbx-dashboard-requests-pagination__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vbx-dashboard-requests-pagination__item {
    display: flex;
}

.vbx-dashboard-requests-pagination__link {
    display: flex;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--color-border-main);
    background: var(--color-basic-white);
    color: var(--color-text-main);
    font-family: "Public Sans";
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-base);
}

.vbx-dashboard-requests-pagination__link:hover {
    background: var(--color-bg-hover);
    border-color: var(--color-primary);
}

.vbx-dashboard-requests-pagination__item--active .vbx-dashboard-requests-pagination__link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-basic-white);
    font-weight: 700;
}

.vbx-dashboard-requests-pagination__item--active .vbx-dashboard-requests-pagination__link:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.vbx-dashboard-requests-pagination__item--disabled .vbx-dashboard-requests-pagination__link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ========================================
   VBX REQUESTS - RESPONSIVE TABLETTE
======================================== */

@media (max-width: 1230px) {
    .vbx-dashboard-requests-cards {
        width: 100%;
        max-width: 100%;
    }

    .vbx-dashboard-requests-card {
        width: 100%;
        height: 150px;
        max-width: 100%;
    }
}

/* ========================================
   VBX REQUESTS - RESPONSIVE MOBILE
======================================== */

@media (max-width: 767px) {
    .vbx-dashboard-requests-cards {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
        width: 100%;
    }

    .vbx-dashboard-requests-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        align-self: stretch;
        width: 100%;
        height: 273.4px;
        border: 1px solid #DADADA;
        background: var(--color-basic-white);
        border-radius: 8px;
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    }

    .vbx-dashboard-requests-card--clickable:hover {
        transform: none;
    }

    .vbx-dashboard-requests-card__image {
        height: 125px;
        width: 100%;
        align-self: stretch;
        border-radius: 7px;
        position: relative;
    }

    .vbx-dashboard-requests-card__image img {
        border-radius: 7px;
    }

    .vbx-dashboard-requests-card__status-badge {
        display: flex;
        padding: 5px 20px 5px 5px;
        align-items: center;
        gap: 10px;
        position: absolute;
        left: 10px;
        top: 10px;
        border-radius: 70px;
        background: #F2F2F2;
    }

    .vbx-dashboard-requests-card__status-badge-icon {
        display: flex;
        width: 25px;
        height: 25px;
        padding: 5px;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        background: #767676;
    }

    .vbx-dashboard-requests-card__status-badge-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0;
    }

    .vbx-dashboard-requests-card__status-badge-text {
        color: var(--color-text-main);
        font-family: "Public Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
    }

    .vbx-dashboard-requests-card__content {
        display: flex;
        padding: 0 20px 20px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
        padding-top: 0;
        flex: none;
    }

    .vbx-dashboard-requests-card__title {
        color: var(--color-text-main);
        font-family: "Public Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .vbx-dashboard-requests-card__actions {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }

    .vbx-dashboard-requests-card__button--continue {
        display: flex;
        padding: 15px 0px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex: 1 0 0;                    
        border-radius: 6px;
        border: 1px solid var(--color-text-main);
        background: transparent;
        color: var(--color-text-main);
        text-align: center;
        font-family: "Public Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: 0.07px;
    }

    .vbx-dashboard-requests-card__button--delete {
        display: flex;
        width: 143px;
        padding: 15px 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
    }

    .vbx-dashboard-requests-card__info {
        height: 54px;
        align-self: stretch;
    }

    .vbx-dashboard-requests-card__status-wrapper {
        display: none;
    }

    .vbx-dashboard-requests-pagination {
        margin-top: 0px;
    }

    .vbx-dashboard-requests-pagination__item {
        display: none;
    }

    .vbx-dashboard-requests-pagination__item--prev,
    .vbx-dashboard-requests-pagination__item--next,
    .vbx-dashboard-requests-pagination__item--active,
    .vbx-dashboard-requests-pagination__item--ellipsis {
        display: flex;
    }

    .vbx-dashboard-requests-pagination__item--active + .vbx-dashboard-requests-pagination__item--number {
        display: flex;
    }

    .vbx-dashboard-requests-pagination__item--number:has(+ .vbx-dashboard-requests-pagination__item--active) {
        display: flex;
    }

    .vbx-dashboard-requests-pagination__link {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* ========================================
   VBX REQUESTS - TAB COUNT BADGE
======================================== */

.vbx-dashboard-requests-nav__count {
    color: var(--color-text-secondary);
    font-family: "Public Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.038px;
}

.vbx-dashboard-requests-nav__item--active .vbx-dashboard-requests-nav__count {
    font-weight: 700;
    color: var(--color-text-main);
}

/* ========================================
   VBX REQUESTS - EMPTY STATE
======================================== */

.vbx-dashboard-requests-empty {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.vbx-dashboard-requests-empty__container {
    display: flex;
    width: 470px;
    max-width: 100%;
    padding: 0px 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-radius: 8px;
}

.vbx-dashboard-requests-empty__illustration {
    width: 251px;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    display: block;
}

.vbx-dashboard-requests-empty__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.vbx-dashboard-requests-empty__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.vbx-dashboard-requests-empty__title {
    align-self: stretch;
    color: var(--color-text-main);
    text-align: center;
    font-family: "Public Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.vbx-dashboard-requests-empty__description {
    color: var(--color-text-secondary);
    text-align: center;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    align-self: stretch;
}

.vbx-dashboard-requests-empty__button {
    align-self: stretch;
    width: 100%;
    justify-content: center;
}

/* ========================================
   VBX REQUESTS - EMPTY STATE RESPONSIVE
======================================== */

@media (max-width: 767px) {
    .vbx-dashboard-requests-empty {
        padding: 40px 16px;
    }

    .vbx-dashboard-requests-empty__container {
        width: 100%;
        padding: 0px 20px;
        gap: 30px;
    }

    .vbx-dashboard-requests-empty__body {
        gap: 24px;
    }
}

@media (max-width: 360px) {
    .vbx-dashboard-requests-empty__container {
        padding: 0px 16px;
        gap: 24px;
    }
}

/* ========================================
   VBX REQUESTS - DELETE REQUEST POPUP RESPONSIVE
======================================== */
@media (min-width: 1024px){
    .vbx-dashboard-modal__delete-request{
        width: 550px;
        display: flex;
        padding: 40px;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }


    .modal-title__delete-request{
        color: var(--Text-Main, #2D2D2D);
        text-align: center;

        /* Titles/H3 */
        font-family: "Public Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px; /* 120% */
    }

    .modal-text__delete-request{
        color: var(--Text-Secondary, #767676);
        text-align: center;

        /* Body/Body1 */
        font-family: "Public Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 137.5% */
    }

    .modal-actions__delete-request{
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .vbx-dashboard-modal__dialog__delete-request {
        width: 550px;
        height: 400px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        border-radius: 8px;
        background: var(--color-basic-white);
        box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.17);
        z-index: calc(var(--z-modal-backdrop) + 1);
        overflow: hidden;
    }
}

@media (max-width: 1023px){
    .vbx-dashboard-modal__delete-request{
        width: 335px;
        display: flex;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }


    .modal-title__delete-request{
        color: var(--Text-Main, #2D2D2D);
        text-align: center;

        /* Titles/H3 */
        font-family: "Public Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px; /* 120% */
    }

    .modal-text__delete-request{
        color: var(--Text-Secondary, #767676);
        text-align: center;

        /* Body/Body1 */
        font-family: "Public Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 137.5% */
    }

    .modal-actions__delete-request{
        display: flex;
        gap: 15px;
        flex-direction: column;
    }

    .vbx-dashboard-modal__dialog__delete-request {
        width: 335px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        border-radius: 8px;
        background: var(--color-basic-white);
        box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.17);
        z-index: calc(var(--z-modal-backdrop) + 1);
        overflow: hidden;
    }
}
}